home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / DU Folder / Data / Sources / Include / Pizza.h < prev    next >
Encoding:
Text File  |  1995-10-12  |  573 b   |  22 lines  |  [TEXT/MPS ]

  1. //    Copyright © 1995 Apple Computer, Inc. All rights reserved.
  2. //    Release Version:    $ 1.0 d11 $
  3.  
  4. #ifndef PIZZA_H
  5. #define PIZZA_H
  6.  
  7. //==========================================================================
  8. class FW_CRect;
  9. class CPizzaODFPart;
  10.  
  11. //==========================================================================
  12. class FW_CLASS_ATTR CPizza {
  13. public:
  14.                         CPizza(FW_CRect bounds);
  15.     virtual                ~CPizza();
  16.     virtual void        Draw(FW_CGraphicContext& gc);
  17. private:
  18.     FW_CRect            fBounds;
  19. };
  20.  
  21. //==========================================================================
  22. #endif